aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorIgor Minar2012-01-17 12:13:29 -0800
committerIgor Minar2012-01-17 12:13:29 -0800
commit22309c312fbfbcc383a9daedb20d34d34d299503 (patch)
tree135aa0bc556a5890d8d2c97bf4744d1e4d8a9ed5 /docs
parentfcf95a47d102583913dca2217af6228c92c11dcf (diff)
downloadangular.js-22309c312fbfbcc383a9daedb20d34d34d299503.tar.bz2
fix(docs): disable appcache - causing too much trouble
Diffstat (limited to 'docs')
-rwxr-xr-xdocs/src/gen-docs.js2
-rw-r--r--docs/src/templates/index.html2
2 files changed, 3 insertions, 1 deletions
diff --git a/docs/src/gen-docs.js b/docs/src/gen-docs.js
index 09c8c45f..2915e110 100755
--- a/docs/src/gen-docs.js
+++ b/docs/src/gen-docs.js
@@ -46,7 +46,7 @@ function writeTheRest(writesFuture) {
var manifest = 'manifest="/build/docs/appcache.manifest"';
writesFuture.push(writer.copy('docs/src/templates/index.html', 'build/docs/index.html',
- writer.replace, {'doc:manifest': manifest}));
+ writer.replace, {'doc:manifest': ''})); //manifest //TODO(i): enable
writesFuture.push(writer.copy('docs/src/templates/index.html', 'build/docs/index-nocache.html',
writer.replace, {'doc:manifest': ''}));
diff --git a/docs/src/templates/index.html b/docs/src/templates/index.html
index 3ab7b26a..93d8cdda 100644
--- a/docs/src/templates/index.html
+++ b/docs/src/templates/index.html
@@ -131,8 +131,10 @@
ng:href="https://github.com/angular/angular.js/blob/master/CHANGELOG.md#{{versionNumber}}"
ng:bind-template="v{{version}}">
</a>
+ <!-- TODO(i): enable
<a ng:hide="offlineEnabled" ng:click ="subpage = true">(enable offline support)</a>
<span ng:show="offlineEnabled">(offline support enabled)</span>
+ -->
<span id="copyright">© 2010-2012 AngularJS</span>
</div>
</div>
n191' href='#n191'>191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339